/* 1.联系我们 */
.contact {
  display: flex;
  justify-content: space-between;
}

.contact .lf {
  width: 42%;
  height: auto;
  box-sizing: border-box;
  padding: 84px 76px;
  background: url(./../images/contact-bg.png) no-repeat left, rgba(0, 0, 0, 1);
}

.contact .rg {
  width: 58%;
  height: auto;
  box-sizing: border-box;
  padding: 84px 76px;
  background-color: #fbfbfb;
}

.contact h3 {
  font-size: 36px;
  font-weight: bold;
}

.contact .lf h3 {
  color: #fff;
}

.contact .rg h3 {
  color: #bc2749;
  text-align: center;
}

.contact .lf ul {
  width: 100%;
  height: auto;
  box-sizing: border-box;
  margin-top: 65px;
  display: flex;
  flex-wrap: nowrap;
  flex-direction: column;
  justify-content: space-between;
}

.contact .lf ul li {
  display: flex;
  flex-direction: row;
}

.contact .lf ul li:not(:first-child) {
  margin-top: 30px;
}

.contact .lf ul li p {
  color: #fff;
}

.contact .lf ul li p:nth-child(1) {
  width: 75px;
}

.contact .lf ul p img {
  width: 13px;
  height: auto;
  vertical-align: middle;
  margin-bottom: 3px;
  margin-right: 5px;
}

.contact .lf .code {
  margin-top: 75px;
}

.contact .lf .code p {
  display: inline-block;
}

.contact .lf .code p:nth-child(1) {
  margin-right: 24px;
}

.contact .lf .code p img {
  width: 150px;
  height: 150px;
}

.contact .lf .code p span {
  display: block;
  text-align: center;
  color: #fff;
  margin-top: 9px;
  font-size: 16px;
}

.contact .rg ul {
  margin-top: 45px;
}

.contact .rg ul li {
  width: 100%;
  height: 60px;
  box-sizing: border-box;
  border: 1px solid #d4d4d4;
  padding: 0 27px;
  background-color: #fff;
  line-height: 58px;
}

.contact .rg ul .active,
.contact .rg ul li:hover {
  border-color: #bc2749;
}

.contact .rg ul li:not(:first-child) {
  margin-top: 20px;
}

.contact .rg ul li label {
  font-size: 14px;
  color: #707070;
  font-weight: normal;
  width: 75px;
  float: left;
}

.contact .rg ul li input {
  float: right;
  width: calc(100% - 75px);
  height: 100%;
  outline: none;
  border: none;
  font-size: 14px;
  color: #707070;
}

.contact .rg .submit {
  background-color: #bc2749;
  color: #fff;
  text-align: center;
  width: 100%;
  height: 60px;
  line-height: 60px;
  margin-top: 30px;
  cursor: pointer;
}

.map {
  width: 100%;
}

.map img {
  width: 100%;
  height: 100%;
}

@media (max-width: 1400px) {
  .contact .lf {
    width: 45%;
    padding: 84px 40px;
  }
  .contact .rg {
    width: 55%;
    padding: 84px 40px;
  }
  .contact h3 {
    font-size: 27px;
  }
  .contact .lf ul {
    margin-top: 43px;
  }
  .contact .lf ul li p:nth-child(1) {
    width: 90px;
  }
}

@media (max-width: 1000px) {
  .contact {
    flex-direction: column;
  }
  .contact .lf,
  .contact .rg {
    width: 100%;
    padding: 30px 20px;
  }
  .contact .lf {
    order: 2;
  }
  .contact .rg {
    order: 1;
  }
  .contact h3 {
    font-size: 22px;
  }
  .contact .lf ul {
    margin-top: 30px;
  }
  .contact .lf ul li:not(:first-child) {
    margin-top: 20px;
  }
  .contact .lf ul li p:nth-child(1) {
    width: 75px;
  }
  .contact .lf .code {
    margin-top: 30px;
  }
  .contact .lf .code p img {
    width: 75px;
    height: 75px;
  }
  .contact .lf .code p span {
    font-size: 13px;
    margin-top: 4px;
  }
  .contact .rg ul {
    width: 100%;
    max-width: 580px;
    margin: 30px auto 0;
  }
  .contact .rg ul li {
    height: 43px;
    padding: 0 15px;
    line-height: 43px;
  }
  .contact .rg ul li:not(:first-child) {
    margin-top: 15px;
  }
  .contact .rg .submit {
    width: 100%;
    max-width: 580px;
    height: 43px;
    line-height: 43px;
    margin: 15px auto 0;
  }
  .map {
    height: 240px;
  }
}

/* 2.荣誉资质 */
.cert-swiper {
  width: 100%;
  height: auto;
  overflow: hidden;
  position: relative;
}

.cert-swiper .swiper-container {
  width: 88%;
  height: auto;
  overflow: hidden;
}

.cert-swiper .swiper-slide {
  width: 40%;
  height: auto;
  overflow: hidden;
}

.cert-swiper .swiper-slide img {
  display: block;
  cursor: pointer;
}

/* 轮播图默认样式修改 */
.cert-swiper .swiper-button-next,
.cert-swiper .swiper-button-prev {
  width: 50px;
  height: 50px;
}

.cert-swiper .swiper-button-prev,
.cert-swiper .swiper-container-rtl .swiper-button-next {
  background-image: url(./../images/cert-left.png);
  background-size: 100% 100%;
}

.cert-swiper .swiper-button-next,
.cert-swiper .swiper-container-rtl .swiper-button-prev {
  background-image: url(./../images/cert-right.png);
  background-size: 100% 100%;
}

@media (max-width: 1000px) {
  .cert-swiper .swiper-container {
    width: 80%;
  }
  .cert-swiper .swiper-button-next,
  .cert-swiper .swiper-button-prev {
    width: 30px;
    height: 30px;
  }
}

/* 3.关于我们 */
.about .cons {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.about .img {
  width: 48%;
}

.about .txt {
  width: 48%;
}

.about .txt p {
  margin-top: 50px;
  line-height: 34px;
  /* 文字对齐 */
  text-align: justify;
  text-align-last: left;
  text-justify: inter-ideograph;
}

.about .txt img {
  display: block;
  float: right;
  width: auto;
  height: 108px;
  margin-top: 60px;
  /* 阴影 */
  box-shadow: 3px 5px 13px 0px rgba(0, 0, 0, 0.08);
}

@media (max-width: 1000px) {
  .about .cons {
    flex-direction: column;
  }
  .about .img {
    width: 60%;
    margin: 30px auto 0;
    order: 2;
  }
  .about .txt {
    width: 100%;
  }
  .about .txt p {
    line-height: 29px;
    margin-top: 15px;
  }
  .about .txt img {
    float: none;
    height: 60px;
    margin: 20px auto 0;
  }
}

/* 4.愿景&价值观 */
.vision {
  display: flex;
  justify-content: space-between;
}

.vision li {
  width: calc((100% / 2) - 20px);
  padding: 60px 40px;
  /* border-radius: 10px; */
  cursor: pointer;
  box-shadow: 3px 5px 13px 0px rgba(0, 0, 0, 0.08);
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  -o-transition: all 0.3s;
  -ms-transition: all 0.3s;
  transition: all 0.3s;
}

.vision li:hover {
  color: #ffffff;
  background-color: #bc2749;
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  -o-transition: all 0.3s;
  -ms-transition: all 0.3s;
  transition: all 0.3s;
}

.vision li h3 {
  font-size: 24px;
}

.vision li i {
  color: #ff0039;
  font-weight: bold;
  margin-left: 20px;
}

.vision li p {
  line-height: 32px;
  margin-top: 35px;
  /* 文字对齐 */
  text-align: justify;
  text-align-last: left;
  text-justify: inter-ideograph;
}

@media (max-width: 1000px) {
  .vision li {
    padding: 30px 20px;
  }
  .vision li h3 {
    font-size: 18px;
  }
  .vision li p {
    line-height: 28px;
    margin-top: 15px;
  }
}

@media (max-width: 768px) {
  .vision {
    flex-direction: column;
  }
  .vision li {
    width: 100%;
  }
  .vision li:nth-child(n + 2) {
    margin-top: 15px;
  }
}

/* 5.导航 */
.inner-tabs {
  text-align: center;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}

.inner-tabs-fixed {
  width: 100%;
  height: auto;
  background-color: #ffffff;
  position: fixed;
  top: 100px;
  left: 0;
  z-index: 100;
  padding: 0 260px;
  /* 阴影 */
  box-shadow: 3px 5px 13px 0px rgba(0, 0, 0, 0.08);
}

.inner-tabs a {
  display: block;
  width: 23%;
  box-sizing: border-box;
  height: 60px;
  line-height: 60px;
  text-align: center;
  border: 1px solid #666666;
  font-size: 20px;
  border-radius: 5px;
  margin-bottom: 9px;
  color: #000000;
  /* 过渡 */
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  -o-transition: all 0.3s;
  -ms-transition: all 0.3s;
  transition: all 0.3s;
}

.inner-tabs2 a {
  width: 15%;
}

.inner-tabs-fixed a {
  margin-bottom: 0;
}

.inner-tabs a:not(:last-child) {
  margin-right: 70px;
}

.inner-tabs-fixed a {
  border: 0;
  border-radius: 0;
}

.inner-tabs a.active,
.inner-tabs a:hover {
  color: #ffffff;
  border: 1px solid #bc2749;
  background-color: #bc2749;
  /* 过渡 */
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  -o-transition: all 0.3s;
  -ms-transition: all 0.3s;
  transition: all 0.3s;
}

@media (max-width: 1400px) {
  .inner-tabs2 a {
    width: 20%;
  }
  .inner-tabs a {
    height: 50px;
    line-height: 50px;
    font-size: 18px;
  }
  .inner-tabs a:not(:last-child) {
    margin-right: 30px;
  }
  .inner-tabs-fixed {
    top: 75px;
    padding: 0;
  }
}

@media (max-width: 1000px) {
  .inner-tabs2 a {
    width: auto;
  }
  .inner-tabs a {
    width: auto;
    height: 32px;
    line-height: 32px;
    font-size: 15px;
    border-radius: 0;
    border: 0;
  }
  .inner-tabs a.active,
  .inner-tabs a:hover {
    background-color: transparent;
    color: #bc2749;
    border: 0;
  }
  .inner-tabs a:not(:last-child) {
    margin-right: 13px;
  }
  .inner-tabs-fixed {
    top: 47px;
  }
}

/* 6.新闻资讯 */
.news li {
  border-right: 5px solid #f7f7f7;
  background-color: #f7f7f7;
  /* border-radius: 15px 0 0 15px; */
  overflow: hidden;
  /* 过渡 */
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  -o-transition: all 0.3s;
  -ms-transition: all 0.3s;
  transition: all 0.3s;
}

.news li:not(:first-child) {
  margin-top: 40px;
}

.news li a {
  width: 100%;
  height: auto;
  display: flex;
  flex-wrap: nowrap;
  justify-content: space-around;
}

.news li .img {
  width: 24%;
}

.news li .txt {
  width: 76%;
  padding: 30px 40px;
}

.news li .txt h3 {
  font-size: 20px;
  /* 超出隐藏 */
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.news li .txt em {
  display: block;
  color: #cccccc;
  margin-top: 14px;
}

.news li .txt p {
  margin-top: 28px;
  line-height: 32px;
  color: #707070;
  /* 文字对齐 */
  text-align: justify;
/*  text-align-last: right;*/
  text-justify: inter-ideograph;
  /* 文字最多显示几行 */
  overflow: hidden;
  text-overflow: ellipsis; /* 超出部分省略号 */
  word-break: break-all; /* break-all(允许在单词内换行。) */
  display: -webkit-box; /* 对象作为伸缩盒子模型显示 */
  -webkit-box-orient: vertical; /* 设置或检索伸缩盒对象的子元素的排列方式 */
  -webkit-line-clamp: 3; /* 显示的行数 */
  max-height: 80rpx; /* 设置最大高度，根据行高，要几行乘以几倍 */
}

.news li .txt span {
  display: block;
  margin-top: 20px;
  color: #cccccc;
}

.news li:hover {
  border-right: 5px solid #bc2749;
  background-color: #ffffff;
  /* 过渡 */
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  -o-transition: all 0.3s;
  -ms-transition: all 0.3s;
  transition: all 0.3s;
}

.news li:hover .txt h3,
.news li:hover .txt span {
  color: #bc2749;
  /* 过渡 */
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  -o-transition: all 0.3s;
  -ms-transition: all 0.3s;
  transition: all 0.3s;
}

@media (max-width: 1400px) {
  .news li {
    /* border-radius: 10px 0 0 10px; */
  }
  .news li:not(:first-child) {
    margin-top: 30px;
  }
  .news li .img {
    width: 30%;
  }
  .news li .txt {
    width: 70%;
    padding: 30px;
  }
  .news li .txt h3 {
    font-size: 18px;
  }
  .news li .txt em {
    margin-top: 10px;
  }
  .news li .txt p {
    margin-top: 20px;
  }
}

@media (max-width: 1000px) {
  .news li {
    /* border-radius: 0; */
    border-right: 3px solid #f7f7f7;
  }
  .news li:hover {
    border-right: 3px solid #bc2749;
  }
  .news li:not(:first-child) {
    margin-top: 20px;
  }
  .news li .img {
    width: 130px;
  }
  .news li .txt {
    width: calc(100% - 130px);
    padding: 15px;
  }
  .news li .txt h3 {
    font-size: 16px;
  }
  .news li .txt em {
    margin-top: 5px;
  }
  .news li .txt p {
    margin-top: 10px;
    line-height: 23px;
    -webkit-line-clamp: 1; /* 显示的行数 */
  }
  .news li .txt span {
    margin-top: 10px;
    font-size: 12px;
  }
}

/* 7.技术服务 */
.case li {
  width: calc((100% / 4) - 27px);
  /* 过渡 */
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  -o-transition: all 0.3s;
  -ms-transition: all 0.3s;
  transition: all 0.3s;
}

.case li:not(:nth-child(4n)) {
  margin-right: 36px;
}

.case li:nth-child(n + 5) {
  margin-top: 40px;
}

.case li .img {
  width: 100%;
}

.case li .det {
  width: 100%;
  height: auto;
  box-sizing: border-box;
  padding: 20px 15px;
  background-color: #ffffff;
  /* 阴影 */
  box-shadow: 3px 5px 13px 0px rgba(0, 0, 0, 0.08);
}

.case li .det h2 {
  font-size: 20px;
  line-height: 34px;
  /* 文字对齐 */
  text-align: justify;
  text-align-last: left;
  text-justify: inter-ideograph;
  /* 文字最多显示几行 */
  overflow: hidden;
  text-overflow: ellipsis; /* 超出部分省略号 */
  word-break: break-all; /* break-all(允许在单词内换行。) */
  display: -webkit-box; /* 对象作为伸缩盒子模型显示 */
  -webkit-box-orient: vertical; /* 设置或检索伸缩盒对象的子元素的排列方式 */
  -webkit-line-clamp: 2; /* 显示的行数 */
  max-height: 80rpx; /* 设置最大高度，根据行高，要几行乘以几倍 */
}

.case li .det p {
  margin-top: 10px;
  color: #8e919b;
  line-height: 30px;
  /* 文字对齐 */
  text-align: justify;
  text-align-last: left;
  text-justify: inter-ideograph;
  /* 文字最多显示几行 */
  overflow: hidden;
  text-overflow: ellipsis; /* 超出部分省略号 */
  word-break: break-all; /* break-all(允许在单词内换行。) */
  display: -webkit-box; /* 对象作为伸缩盒子模型显示 */
  -webkit-box-orient: vertical; /* 设置或检索伸缩盒对象的子元素的排列方式 */
  -webkit-line-clamp: 3; /* 显示的行数 */
  max-height: 80rpx; /* 设置最大高度，根据行高，要几行乘以几倍 */
}

.case li:hover .det h2 {
  color: #bc2749;
  /* 过渡 */
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  -o-transition: all 0.3s;
  -ms-transition: all 0.3s;
  transition: all 0.3s;
}

@media (max-width: 1400px) {
  .case li {
    width: calc((100% / 4) - 18px);
  }
  .case li:not(:nth-child(4n)) {
    margin-right: 24px;
  }
  .case li:nth-child(n + 5) {
    margin-top: 30px;
  }
  .case li .det {
    padding: 20px 15px 30px;
  }
  .case li .det h2 {
    font-size: 18px;
    line-height: 30px;
  }
  .case li .det p {
    margin-top: 15px;
  }
}

@media (max-width: 1000px) {
  .case li {
    width: calc((100% / 3) - 10px);
  }
  .case li:not(:nth-child(4n)) {
    margin-right: 0;
  }
  .case li:nth-child(n + 5) {
    margin-top: 0;
  }
  .case li:not(:nth-child(3n)) {
    margin-right: 15px;
  }
  .case li:nth-child(n + 4) {
    margin-top: 20px;
  }
  .case li .det {
    padding: 15px 15px 30px;
  }
  .case li .det h2 {
    font-size: 16px;
    line-height: 28px;
  }
  .case li .det p {
    margin-top: 10px;
    line-height: 26px;
  }
  .case li .det span {
    margin-top: 15px;
  }
  .case li .det span img {
    width: 20px;
  }
}

@media (max-width: 768px) {
  .case li {
    width: calc(50% - 7px);
  }
  .case li:not(:nth-child(3n)) {
    margin-right: 0px;
  }
  .case li:nth-child(n + 4) {
    margin-top: 0px;
  }
  .case li:not(:nth-child(2n)) {
    margin-right: 14px;
  }
  .case li:nth-child(n + 3) {
    margin-top: 14px;
  }
}

@media (max-width: 480px) {
  .case li {
    width: 100%;
  }
  .case li:not(:nth-child(2n)) {
    margin-right: 0;
  }
  .case li:nth-child(n + 3) {
    margin-top: 0;
  }
  .case li:nth-child(n + 2) {
    margin-top: 20px;
  }
}

/* 8.产品展示 */
.goods {
  width: 100%;
  height: auto;
  display: flex;
  flex-wrap: wrap;
  padding: 0 10px 20px 0;
}

.goods li {
  width: calc((100% / 3) - 26px);
}

.goods li:not(:nth-child(3n)) {
  margin-right: 39px;
}

.goods li:nth-child(n + 4) {
  margin-top: 39px;
}

.goods li .img {
  width: 100%;
  height: 320px;
}

.goods li .det {
  width: 100%;
  height: 58px;
  line-height: 58px;
  box-sizing: border-box;
  padding: 0 20px;
  font-size: 16px;
  box-shadow: 3px 3px 7px 0px rgba(0, 0, 0, 0.12);
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  -o-transition: all 0.3s;
  -ms-transition: all 0.3s;
  transition: all 0.3s;
}

.goods li .det p {
  display: inline-block;
  width: 80%;
  /* 超出隐藏 */
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.goods li .det span {
  float: right;
}

.goods li:hover .det,
.goods .active .det {
  background-color: #bc2749;
  color: #ffffff;
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  -o-transition: all 0.3s;
  -ms-transition: all 0.3s;
  transition: all 0.3s;
}

@media (max-width: 1400px) {
  .goods li {
    width: calc((100% / 3) - 10px);
  }
  .goods li:not(:nth-child(3n)) {
    margin-right: 15px;
  }
  .goods li:nth-child(n + 4) {
    margin-top: 15px;
  }
  .goods li .det {
    padding: 0 10px;
    height: 47px;
    line-height: 47px;
    font-size: 16px;
  }
.goods li .img {
  width: 100%;
  height: 280px;
}
}

@media (max-width: 1000px) {
  .goods li .det {
    padding: 0 7px;
    height: 37px;
    line-height: 37px;
    font-size: 14px;
  }
  .goods li .det p {
    width: 90%;
  }
  .goods li .det {
    box-shadow: 0 0 0 0;
    border: 1px solid #e1ebf2;
    border-top: 0;
  }

}

@media (max-width: 680px) {
  .goods li {
    width: calc(50% - 7px);
  }
  .goods li:not(:nth-child(3n)) {
    margin-right: 0;
  }
  .goods li:nth-child(n + 4) {
    margin-top: 0;
  }
  .goods li:not(:nth-child(2n)) {
    margin-right: 14px;
  }
  .goods li:nth-child(n + 3) {
    margin-top: 14px;
  }
.goods li .img {
  width: 100%;
  height: 180px;
}
}

/* 9.品牌中心 */
.brand-box .more {
  cursor: pointer;
  display: block;
  width: 230px;
  height: 65px;
  line-height: 65px;
  text-align: center;
  background-color: #bc2749;
  color: #ffffff;
  border-radius: 5px;
  margin: 70px auto 0;
}

.brand-box .more img {
  width: 13px;
  height: auto;
  margin-left: 5px;
}

.brand li:first-child {
  margin-top: 0;
}

.brand li {
  margin-top: 40px;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  cursor: pointer;
  /* 过渡 */
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  -o-transition: all 0.3s;
  -ms-transition: all 0.3s;
  transition: all 0.3s;
  /* background-color: thistle; */
}

.brand li .tags {
  width: 320px;
  height: 62px;
  line-height: 62px;
  text-align: center;
  border: 1px solid #b0b0b0;
  border-radius: 5px;
  text-transform: uppercase;
  font-size: 17px;
  background-color: #ffffff;
  /* 过渡 */
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  -o-transition: all 0.3s;
  -ms-transition: all 0.3s;
  transition: all 0.3s;
}

.brand li .tags:hover  {
  color: #ffffff;
  background-color: #bc2749;
  border: 1px solid #bc2749;
  /* 过渡 */
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  -o-transition: all 0.3s;
  -ms-transition: all 0.3s;
  transition: all 0.3s;
}
.brand li .tags:hover a{
    color:#fff
}

.brand li .item {
  width: calc(100% - 320px);
  height: auto;
  /* background-color: teal; */
  background-color: #fdfdfd;
  padding-left: 40px;
  padding-right: 20px;
  padding-top: 15px;
  padding-bottom: 15px;
}

.brand li .item span {
  color: #666666;
  font-size: 15px;
  margin-right: 70px;
  line-height: 32px;
}
.brand li .item span a:hover{
    color:#bc2749
}

@media (max-width: 1400px) {
  .brand li .tags {
    width: 240px;
  }
  .brand li .item {
    width: calc(100% - 240px);
  }
  .brand li .item span {
    margin-right: 30px;
  }
}

@media (max-width: 1000px) {
  .brand li {
    flex-direction: column;
    margin-top: 20px;
  }
  .brand li .tags {
    width: 180px;
    border-radius: 0;
    height: 43px;
    line-height: 43px;
    font-size: 14px;
  }
  .brand li .item {
    width: 100%;
    padding: 20px;
  }
  .brand li .item span {
    margin-right: 15px;
    font-size: 13px;
    line-height: 28px;
  }
  .brand-box .more {
    width: 150px;
    height: 43px;
    line-height: 43px;
    border-radius: 0;
    margin: 50px auto 0;
  }
}

/* 10.合作中心 */
.firm {
  display: flex;
  flex-wrap: wrap;
  
}

.firm li {
  width: 25%;
  padding:10px;
  cursor: pointer;
  display:flex;
  align-items:center;
  justify-content:center;
}

/*.firm li:nth-child(n + 6) {
  margin-top: 50px;
}

.firm li:nth-child(-n + 4) {
  margin-right: 25px;
}

.firm li:nth-child(1) {
  margin-left: 90px;
}

.firm li:nth-child(5) {
  margin-right: 90px;
}

.firm li:nth-child(6) {
  margin-left: -81px;
}

.firm li:nth-child(n + 6):nth-child(-n + 10) {
  margin-right: 25px;
}

.firm li:nth-child(n + 6):nth-child(-n + 11) {
  box-shadow: 3px 5px 13px 0px rgba(0, 0, 0, 0.08);
}

.firm li:nth-child(n + 12) {
  margin-right: 25px;
}

.firm li:nth-child(17) {
  margin-right: 0;
}

.firm li:nth-child(12) {
  margin-left: 81px;
}*/

@media (max-width: 1766px) {
  .firm {
    justify-content: flex-start;
  }
  .firm li:nth-child(1) {
    margin-left: 0;
  }
  .firm li:nth-child(5) {
    margin-right: 0;
  }
  .firm li:nth-child(12) {
    margin-left: 0;
  }
  .firm li:nth-child(6) {
    margin-left: 0;
  }
  .firm li:nth-child(n + 6):nth-child(-n + 11) {
    box-shadow: 0 0 0 0;
  }
  .firm li:nth-child(n + 12) {
    margin-right: 0;
  }
  .firm li:nth-child(-n + 4) {
    margin-right: 0;
  }
  .firm li:nth-child(n + 6):nth-child(-n + 10) {
    margin-right: 0;
  }
  .firm li:nth-child(n + 6) {
    margin-top: 32px;
  }
  .firm li:not(:nth-child(5n)) {
    margin-right: 25px !important;
  }
}

@media (max-width: 1400px) {
  .firm li {
    width: calc(25% - 12px);
  }
  .firm li:nth-child(n + 6) {
    margin-top: 0;
  }
  .firm li:not(:nth-child(5n)) {
    margin-right: 0 !important;
  }
  .firm li:nth-child(n + 5) {
    margin-top: 16px;
  }
  .firm li:not(:nth-child(4n)) {
    margin-right: 16px !important;
  }
}

@media (max-width: 1000px) {
  .firm li {
    width: calc(25% - 4.5px);
  }
  .firm li:nth-child(n + 5) {
    margin-top: 6px;
  }
  .firm li:not(:nth-child(4n)) {
    margin-right: 6px !important;
  }
}

@media (max-width: 680px) {
  .firm li {
    width: calc((100% / 3) - 2px);
  }
  .firm li:nth-child(n + 5) {
    margin-top: 0;
  }
  .firm li:not(:nth-child(4n)) {
    margin-right: 0 !important;
  }
  .firm li:nth-child(n + 4) {
    margin-top: 3px;
  }
  .firm li:not(:nth-child(3n)) {
    margin-right: 3px !important;
  }
}

/* 11.首页品牌中心 */
.tange {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}

.tange-tabs {
  width: 250px;
  height: auto;
}

.tange-tabs a {
  display: block;
  color: #6e6e6e;
  font-size: 24px;
  padding-left: 85px;
  position: relative;
  /* 过渡 */
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  -o-transition: all 0.3s;
  -ms-transition: all 0.3s;
  transition: all 0.3s;
}

.tange-tabs a:not(:first-child) {
  margin-top: 50px;
}

.tange-tabs a::before {
  content: "";
  display: block;
  width: 40px;
  height: 5px;
  background-color: #6e6e6e;
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
}

.tange-tabs a:hover,
.tange-tabs a.active {
  color: #bc2749;
  /* 过渡 */
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  -o-transition: all 0.3s;
  -ms-transition: all 0.3s;
  transition: all 0.3s;
}

.tange-tabs a:hover::before,
.tange-tabs a.active::before {
  width: 65px;
  background-color: #bc2749;
}

.tange-labs {
  width: calc(100% - 270px);
/*  padding-left: 70px;*/
}

.tange-labs ul {
  display: flex;
/*  justify-content: space-between;*/
}

.tange-labs ul li {
  width: calc((100% / 3) - 20px);
  position: relative;
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  -o-transition: all 0.3s;
  -ms-transition: all 0.3s;
  transition: all 0.3s;
  margin-right:20px;
}
.tange-labs ul li:last-child{
    margin:0
}

.tange-labs ul li a {
  display: block;
}

.tange-labs ul li img {
  width: 100%;
  height: auto;
}

.tange-labs ul li p {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 68px;
  line-height: 68px;
  text-align: center;
  color: #ffffff;
  font-size: 17px;
  padding: 0 7px;
  /* 超出隐藏 */
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  background: url(./../images/txt-bg.png) no-repeat center/cover;
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  -o-transition: all 0.3s;
  -ms-transition: all 0.3s;
  transition: all 0.3s;
}

.tange-labs ul li:hover p {
  background: url(./../images/txt-bg-r.png) no-repeat center/cover;
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  -o-transition: all 0.3s;
  -ms-transition: all 0.3s;
  transition: all 0.3s;
}

.tange-labs .desc {
/*  text-align: center;*/
  margin-top: 40px;
  line-height: 32px;
}


.BrandD{
    display:flex;
    justify-content:space-between;
    align-items:center
}
.BrandD .div-img{
    width:400px;
}
.BrandD .div-tet{
    width:calc(100% - 450px);
}
.BrandD .div-tet h3{
    font-size:24px;
    color:#333;
}
.BrandD .div-tet p{
    font-size:16px;
    color:#666;
    padding-top:30px;
    line-height:25px;
    text-indent:32px
}
.BrandD-cp{
    padding-top:40px;
}
.BrandD-cp .h2{
    font-size:24px;
    color:#333;
    line-height:40px;
    border-bottom:solid 1px #ddd;
    margin-bottom:30px;
}

@media (max-width: 1400px) {
    .tange-tabs {
    width: 160px;
  }
  .tange-labs {
    width: calc(100% - 160px);
    padding-left: 30px;
  }
  .tange-tabs a {
    font-size: 20px;
    padding-left: 65px;
  }
  .tange-tabs a:not(:first-child) {
    margin-top: 30px;
  }
  .tange-tabs a::before {
    width: 20px;
  }
  .tange-tabs a:hover::before,
  .tange-tabs a.active::before {
    width: 45px;
  }
}

@media (max-width: 1000px) {
    .tange-labs ul li {
        margin-right: 10px;
    }

.tange-labs ul li:last-child {
    margin: 0
}
  .tange {
    flex-direction: column;
  }
  .tange-tabs {
    width: 100%;
    text-align: center;
  }
  .tange-labs {
    width: 100%;
    padding-left: 0;
    margin-top: 30px;
  }
  .tange-tabs a {
    font-size: 16px;
    padding-left: 0;
    display: inline-block;
  }
  .tange-tabs a:not(:first-child) {
    margin-top: 0;
  }
  .tange-tabs a:not(:last-child) {
    margin-right: 32px;
  }
  .tange-tabs a::before {
    display: none;
  }
  .tange-tabs a:hover::before,
  .tange-tabs a.active::before {
    display: none;
  }
  .tange-labs ul li p {
    height: 38px;
    line-height: 38px;
    font-size: 15px;
  }
  .tange-labs .desc {
    margin-top: 15px;
    line-height: 28px;
  }
  .tange-labs ul li {
    width: calc((100% / 3) - 6px);
  }
  .BrandD{
    display:block;
    justify-content:space-between;
    align-items:center
}
.BrandD .div-img{
    width:100%;
    text-align:center
}
.BrandD .div-tet{
    width:100%;
    padding-top:20px;
}
.BrandD .div-tet h3{
    font-size:24px;
    color:#333;
    text-align:center
}
.BrandD .div-tet p{
    font-size:16px;
    color:#666;
    padding-top:30px;
    line-height:25px;
    text-indent:32px
}
.BrandD-cp{
    padding-top:40px;
}
.BrandD-cp .h2{
    font-size:24px;
    color:#333;
    line-height:40px;
    border-bottom:solid 1px #ddd;
    margin-bottom:20px;
}
}

/* 12.首页技术服务 */
.logy-tabs {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}

.logy-tabs a {
  color: #ffffff;
  font-size: 20px;
  /* 过渡 */
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  -o-transition: all 0.3s;
  -ms-transition: all 0.3s;
  transition: all 0.3s;
}

.logy-tabs a.active,
.logy-tabs a:hover {
  color: #bc2749;
}

.logy-swiper {
  width: 100%;
  height: auto;
  position: relative;
}

.logy-swiper .swiper-slide {
  width: 100%;
  height: auto;
  padding: 40px;
  background-color: #ffffff;
  overflow: hidden;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
}

.logy-swiper .img {
  width: 47%;
}

.logy-swiper .txt {
  width: 50%;
}

.logy-swiper .txt h2 {
  font-size: 24px;
  font-weight: bold;
}

.logy-swiper .txt p {
  font-size: 17px;
  color: #9199a6;
  margin-top: 32px;
  line-height: 34px;
  /* 文字对齐 */
  text-align: justify;
  text-align-last: left;
  text-justify: inter-ideograph;
  /* 文字最多显示几行 */
  overflow: hidden;
  text-overflow: ellipsis; /* 超出部分省略号 */
  word-break: break-all; /* break-all(允许在单词内换行。) */
  display: -webkit-box; /* 对象作为伸缩盒子模型显示 */
  -webkit-box-orient: vertical; /* 设置或检索伸缩盒对象的子元素的排列方式 */
  -webkit-line-clamp: 3; /* 显示的行数 */
  max-height: 80rpx; /* 设置最大高度，根据行高，要几行乘以几倍 */
}

.logy-swiper .txt .desc {
  margin-top: 60px;
}

.logy-swiper .txt .desc span {
  display: block;
  font-size: 17px;
}

.logy-swiper .txt .desc span:nth-child(n + 2) {
  margin-top: 20px;
}

.logy-swiper .txt a {
  display: block;
  width: 200px;
  height: 56px;
  line-height: 56px;
  text-align: center;
  color: #ffffff;
  background-color: #bc2749;
  margin-top: 60px;
}

/* 分页按钮修改 */
.logy-swiper .swiper-button-next,
.logy-swiper .swiper-button-prev {
  width: 60px;
  height: 60px;
}
.logy-swiper .swiper-button-prev,
.logy-swiper .swiper-container-rtl .swiper-button-next {
  background-image: url(./../images/logy-left.png);
  background-size: 100% 100%;
  left: -90px;
  cursor: pointer;
}
.logy-swiper .swiper-button-next,
.logy-swiper .swiper-container-rtl .swiper-button-prev {
  background-image: url(./../images/logy-right.png);
  background-size: 100% 100%;
  right: -90px;
  cursor: pointer;
}

@media (max-width: 1600px) {
  .logy-swiper .swiper-container,
  .ser-tabs-swiper .swiper-container {
    width: calc(100% - 180px);
  }
  .logy-swiper .swiper-button-prev,
  .logy-swiper .swiper-container-rtl .swiper-button-next {
    left: 0;
  }
  .logy-swiper .swiper-button-next,
  .logy-swiper .swiper-container-rtl .swiper-button-prev {
    right: 0;
  }
}

@media (max-width: 1400px) {
  .logy-swiper .swiper-slide {
    padding: 30px;
  }
  .logy-swiper .txt p {
    font-size: 16px;
    margin-top: 20px;
    line-height: 32px;
  }
  .logy-swiper .txt .desc {
    margin-top: 30px;
  }
  .logy-swiper .txt a {
    margin-top: 40px;
  }
  .logy-swiper .txt .desc span {
    font-size: 15px;
  }
  .logy-swiper .swiper-button-next,
  .logy-swiper .swiper-button-prev {
    width: 43px;
    height: 43px;
  }
  .logy-swiper .swiper-container,
  .ser-tabs-swiper .swiper-container {
    width: calc(100% - 120px);
  }
}

@media (max-width: 1000px) {
  .logy-tabs {
    justify-content: center;
  }
  .logy-tabs a {
    font-size: 16px;
    margin-right: 13px;
    margin-bottom: 10px;
  }
  .logy-swiper .txt h2 {
    font-size: 17px;
    margin-top: 15px;
    line-height: 27px;
  }
  .logy-swiper .txt p {
    font-size: 13px;
    margin-top: 10px;
    line-height: 28px;
    -webkit-line-clamp: 2; /* 显示的行数 */
  }
  .logy-swiper .txt .desc {
    margin-top: 15px;
  }
  .logy-swiper .txt .desc span {
    font-size: 14px;
    line-height: 28px;
  }
  .logy-swiper .txt .desc span:nth-child(n + 2) {
    margin-top: 5px;
  }
  .logy-swiper .txt a {
    margin: 30px auto 0;
    width: 120px;
    height: 37px;
    line-height: 37px;
  }
  .logy-swiper .swiper-button-next,
  .logy-swiper .swiper-button-prev {
    width: 30px;
    height: 30px;
  }
  .logy-swiper .swiper-container,
  .ser-tabs-swiper .swiper-container {
    width: calc(100% - 70px);
  }
}

@media (max-width: 768px) {
  .logy-swiper .swiper-slide {
    padding: 25px 15px;
    flex-direction: column;
  }
  .logy-swiper .img {
    width: 60%;
    order: 1;
  }
  .logy-swiper .txt {
    width: 100%;
    order: 2;
  }
}

/* 13.首页新闻资讯 */
.jour {
  display: flex;
  justify-content: space-between;
}

.jour .lf,
.jour .rg {
  width: 47%;
}

.jour .jour-lf-tabs,
.jour .jour-rg-tabs {
  padding-bottom: 20px;
  overflow: hidden;
}

.jour .jour-lf-tabs {
  border-bottom: 1px solid #e9e9e9;
}

.jour .jour-lf-tabs a,
.jour .jour-rg-tabs a {
  font-size: 20px;
  line-height: 20px;
}

.jour .jour-lf-tabs a:first-child {
  float: left;
}

.jour .jour-lf-tabs a:last-child {
  float: right;
}

.jour .jour-rg-tabs a {
  padding: 0 20px;
  /* 过渡 */
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  -o-transition: all 0.3s;
  -ms-transition: all 0.3s;
  transition: all 0.3s;
}

.jour .jour-rg-tabs a:first-child {
  padding-left: 0;
}

.jour .jour-rg-tabs a:last-child {
  padding-right: 0;
}

.jour .jour-rg-tabs a:not(:last-child) {
  border-right: 2px solid #000000;
}

.jour .jour-rg-tabs a.active,
.jour .jour-rg-tabs a:hover {
  color: #bc2749;
  /* 过渡 */
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  -o-transition: all 0.3s;
  -ms-transition: all 0.3s;
  transition: all 0.3s;
}

.number li {
  margin-top: 30px;
  /* 过渡 */
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  -o-transition: all 0.3s;
  -ms-transition: all 0.3s;
  transition: all 0.3s;
}

.number li a {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.number li .img {
  width: 120px;
}

.number li .txt {
  width: calc(100% - 150px);
}

.number li .txt p {
  font-size: 20px;
  /* 超出隐藏 */
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  /* 过渡 */
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  -o-transition: all 0.3s;
  -ms-transition: all 0.3s;
  transition: all 0.3s;
}

.number li span {
  display: block;
  margin-top: 15px;
  color: #b1b1b1;
}

.number li.active .txt p,
.number li:hover .txt p {
  color: #bc2749;
  /* 过渡 */
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  -o-transition: all 0.3s;
  -ms-transition: all 0.3s;
  transition: all 0.3s;
}

.figure li {
  margin-top: 20px;
  background-color: #ffffff;
  padding: 15px 20px;
  /* 过渡 */
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  -o-transition: all 0.3s;
  -ms-transition: all 0.3s;
  transition: all 0.3s;
}

.figure li:first-child {
  margin-top: 0;
}

.figure li a {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.figure li .time {
  font-family: "Arial";
  width: 75px;
  font-weight: bold;
}

.figure li .txt {
  width: calc(100% - 75px);
  padding-left: 20px;
  border-left: 1px solid #e7e7e7;
}

.figure li .time s,
.figure li .time i {
  display: block;
}

.figure li .time i {
  font-size: 42px;
  line-height: 42px;
}

.figure li .time s {
  font-size: 14px;
}

.figure li .txt p {
  font-size: 20px;
  /* 超出隐藏 */
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.figure li .txt span {
  margin-top: 15px;
  display: block;
  color: #666666;
  /* 超出隐藏 */
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.figure li:hover {
  background-color: #bc2749;
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  -o-transition: all 0.3s;
  -ms-transition: all 0.3s;
  transition: all 0.3s;
}

.figure li:hover .time,
.figure li:hover .txt p,
.figure li:hover .txt span {
  color: #ffffff;
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  -o-transition: all 0.3s;
  -ms-transition: all 0.3s;
  transition: all 0.3s;
}

@media (max-width: 1200px) {
  .jour {
    flex-direction: column;
  }
  .jour .lf,
  .jour .rg {
    width: 100%;
  }
  .jour .rg {
    margin-top: 60px;
  }
}

@media (max-width: 1000px) {
  .jour .jour-lf-tabs,
  .jour .jour-rg-tabs {
    padding-bottom: 15px;
  }
  .jour .jour-lf-tabs a,
  .jour .jour-rg-tabs a {
    font-size: 16px;
    line-height: 16px;
  }
  .jour .jour-rg-tabs a {
    padding: 0 10px;
  }
  .jour .rg {
    margin-top: 30px;
  }
  .number li {
    margin-top: 20px;
  }
  .number li .img {
    width: 90px;
  }
  .number li .txt {
    width: calc(100% - 105px);
  }
  .number li .txt p,
  .figure li .txt p {
    font-size: 16px;
  }
  .number li span,
  .figure li .txt span {
    margin-top: 10px;
  }
  .figure li {
    padding: 15px;
  }
  .figure li .time {
    text-align: center;
    width: 65px;
  }
  .figure li .txt {
    width: calc(100% - 65px);
    padding-left: 15px;
  }
  .figure li .time i {
    font-size: 30px;
    line-height: 30px;
  }
  .figure li .time s {
    font-size: 10px;
  }
}

/* 14.首页产品展示 */
.pro-tabs {
  text-align: right;
  margin-bottom: 30px;
}

.pro-tabs a {
  display: inline-block;
  font-size: 20px;
  /* 过渡 */
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  -o-transition: all 0.3s;
  -ms-transition: all 0.3s;
  transition: all 0.3s;
}

.pro-tabs a:not(:last-child) {
  margin-right: 60px;
}

.pro-tabs a.active,
.pro-tabs a:hover {
  color: #bc2749;
  /* 过渡 */
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  -o-transition: all 0.3s;
  -ms-transition: all 0.3s;
  transition: all 0.3s;
}

.pro li {
  width: calc((100% / 4) - 21px);
  background-color: #ffffff;
  box-sizing: border-box;
  padding: 20px;
  /* 阴影 */
  box-shadow: 3px 5px 13px 0px rgba(0, 0, 0, 0.08);
  /* 过渡 */
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  -o-transition: all 0.3s;
  -ms-transition: all 0.3s;
  transition: all 0.3s;
}

.pro li:not(:nth-child(4n)) {
  margin-right: 28px;
}

.pro li:nth-child(n + 5) {
  margin-top: 40px;
}

.pro li .img {
  width: 100%;
  height:280px
}

.pro li h2 {
  text-align: center;
  margin-top: 20px;
  font-size: 18px;
  line-height: 32px;
  /* 文字最多显示几行 */
  overflow: hidden;

}

.pro li p {
  line-height: 25px;
  margin-top: 15px;
  font-size:16px;
  color: #666666;
  /* 文字对齐 */
  text-align: justify;
  text-align-last: left;
  text-justify: inter-ideograph;
  /* 文字最多显示几行 */
  overflow: hidden;
  text-overflow: ellipsis; /* 超出部分省略号 */
  word-break: break-all; /* break-all(允许在单词内换行。) */
  display: -webkit-box; /* 对象作为伸缩盒子模型显示 */
  -webkit-box-orient: vertical; /* 设置或检索伸缩盒对象的子元素的排列方式 */
  -webkit-line-clamp: 3; /* 显示的行数 */
  height: 75px; /* 设置最大高度，根据行高，要几行乘以几倍 */
}

.pro li .more {
  border-top: 1px solid #bcbcbc;
  margin-top: 27px;
  padding-top: 20px;
  color: #b2b2b2;
  overflow: hidden;
}

.pro li .more i {
  float: left;
}

.pro li .more img {
  width: 32px;
  float: right;
  vertical-align: middle;
  margin-top: 7px;
}

.pro li:hover {
  background-color: #bc2749;
  /* 过渡 */
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  -o-transition: all 0.3s;
  -ms-transition: all 0.3s;
  transition: all 0.3s;
}

.pro li:hover h2,
.pro li:hover p,
.pro li:hover .more {
  color: #ffffff;
  /* 过渡 */
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  -o-transition: all 0.3s;
  -ms-transition: all 0.3s;
  transition: all 0.3s;
}

.pro li:hover .more img {
  filter: grayscale(100%) brightness(400%);
}

.pro li:hover .more {
  border-top: 1px solid #ffffff;
}

@media (max-width: 1200px) {
  .pro li {
    width: calc((100% / 3) - 10px);
  }
  .pro li:not(:nth-child(4n)) {
    margin-right: 0;
  }
  .pro li:nth-child(n + 5) {
    margin-top: 0;
  }
  .pro li:not(:nth-child(3n)) {
    margin-right: 15px;
  }
  .pro li:nth-child(n + 4) {
    margin-top: 30px;
  }
}

@media (max-width: 1000px) {
  .pro-tabs {
    margin-bottom: 15px;
    text-align: center;
  }
  .pro-tabs a {
    font-size: 15px;
    margin-bottom: 7px;
  }
  .pro-tabs a:not(:last-child) {
    margin-right: 15px;
  }
  .pro li {
    width: calc((100% / 2) - 7px);
    padding: 15px;
  }
  .pro li:not(:nth-child(3n)) {
    margin-right: 0;
  }
  .pro li:nth-child(n + 4) {
    margin-top: 0;
  }
  .pro li:not(:nth-child(2n)) {
    margin-right: 14px;
  }
  .pro li:nth-child(n + 3) {
    margin-top: 20px;
  }
  .pro li h2 {
    margin-top: 15px;
    font-size: 15px;
    line-height: 28px;
  }
  .pro li p {
    line-height: 27px;
    margin-top: 15px;
  }
  .pro li .more {
    margin-top: 15px;
    padding-top: 10px;
  }
  .pro li .more img {
    width: 23px;
  }
}

@media (max-width: 580px) {
  .pro li {
    width: 100%;
  }
  .pro li:not(:nth-child(2n)) {
    margin-right: 0;
  }
  .pro li:nth-child(n + 3) {
    margin-top: 0;
  }
  .pro li:nth-child(n + 2) {
    margin-top: 15px;
  }
}
